home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 Super Collection / Windows 95 Super Collection.iso / win95 / bench / thread / fileopts.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-12  |  1.1 KB  |  45 lines

  1. // fileopts.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CFileDemoOptionsDlg dialog
  6.  
  7. #include "resource.h"
  8.  
  9. class CFileDemoOptionsDlg : public CDialog
  10. {
  11. // Construction
  12. public:
  13.     CFileDemoOptionsDlg(CWnd* pParent = NULL);   // standard constructor
  14.  
  15. // Dialog Data
  16.     //{{AFX_DATA(CFileDemoOptionsDlg)
  17.     enum { IDD = IDD_FILE_DEMO_OPTS_DLG };
  18.     UINT    m_uFileKB;
  19.     CString    m_strWorkFileName;
  20.     //}}AFX_DATA
  21.  
  22.     BOOL m_bDoAsynchronousFileIO;
  23.     BOOL m_bDoFileWrite;
  24.  
  25. // Overrides
  26.     // ClassWizard generated virtual function overrides
  27.     //{{AFX_VIRTUAL(CFileDemoOptionsDlg)
  28.     protected:
  29.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  30.     //}}AFX_VIRTUAL
  31.  
  32. // Implementation
  33. protected:
  34.  
  35.     // Generated message map functions
  36.     //{{AFX_MSG(CFileDemoOptionsDlg)
  37.     afx_msg void OnReadFile();
  38.     afx_msg void OnWriteFile();
  39.     virtual BOOL OnInitDialog();
  40.     afx_msg void OnBrowseBtn();
  41.     afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  42.     //}}AFX_MSG
  43.     DECLARE_MESSAGE_MAP()
  44. };
  45.